home *** CD-ROM | disk | FTP | other *** search
/ Stanley's Sticker Stories / Stanley's Sticker Stories (1997)(Edmark)[Mac-PC].iso / mac / DemoData / Shared.Cxt / 00014_Field_14.txt < prev    next >
Text File  |  1996-09-30  |  613b  |  7 lines

  1. LoopOnQT theChannel, theMarker
  2. This function loops back to a specified frame until the movie in channel specied is finished.  This is useful for animated menus and interfaces, where you want to keep things moving on the stage eventhough you are waiting for a sound to finish.
  3. Example:  theMarker can be: any negative number, 0, or any frame label ("myLoop").  theChannel can be 1 through 48
  4. loopOnQT(4,-4) -- channel 4;back four markers
  5. loopOnQT(15,-1)   --channel 15;previous marker
  6. loopOnQT(4,0)   --channel4;current marker
  7. loopOnQT(12,"myLoop") --movie in channel 12 and loop to the marker named "myLoop"